home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
17 Bit Software 6: Level 6
/
17 Bit - Level 6 (1998)(Epic Marketing)[!].iso
/
essential
/
virusworkshop
/
arexx
/
lhafile.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-07-06
|
700b
|
27 lines
/* Arexxtestscript for the viruskiller VirusWorkshop from Markus Schmall */
/* Version 1.0 (5.6.1995) */
OPTIONS RESULTS /* enable return codes */
address 'VWPort'
OPTIONS FAILAT 999 /* ignore warnings */
/* ------------------------ inSERT YOUR CODE HERE: ------------------- */
say "Checking a LHA/LZX archive..."
"LFILE ram:test.lha"
say "Checking finished..."
IF rc=15 THEN say "Error while LHA operations..."
IF rc=0 THEN say "No virus found..."
IF rc=1 THEN say "Virus found and deleted...."
/* ---------------------------- END OF YOUR CODE --------------------- */
EXIT